home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 July / Chip_2003-07_cd1.bin / tema / ptools / download / jv16pt_setup.exe / {app} / Documentation / Example Scripts / Loops and variables demo.jvb < prev    next >
Text File  |  2003-02-08  |  137b  |  14 lines

  1. Console
  2. Define x 0
  3. Define z
  4. z := 6
  5.  
  6. For (i = x to z; +1)
  7.  
  8.  If i > 0 then
  9.   if i <= 2 then 
  10.    PrintMessage i
  11.   end
  12.  end
  13.  
  14. End